home *** CD-ROM | disk | FTP | other *** search
/ MacWorld: Super Stacks! / Macworld CD.iso / HyperCard Archives / International / French v1.2.5.1 / Piles principales / Notes sur la version 1.2.5 / card_2810.txt < prev    next >
Text File  |  1989-10-04  |  2KB  |  78 lines

  1. -- card: 2810 from stack: in.5
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 5683
  5. -- name: Cursor
  6.  
  7.  
  8. -- part contents for background part 7
  9. ----- text -----
  10. Cursor
  11.  
  12. -- part contents for background part 8
  13. ----- text -----
  14. set cursor to {iBeam|plus|cross|watch|none|¬¨
  15.                busy|arrow|hand}
  16.  
  17.  
  18. -- part contents for background part 10
  19. ----- text -----
  20. aucun
  21.  
  22. -- part contents for background part 11
  23. ----- text -----
  24. La propri√©t√© Cursor comporte 4 nouveaux synonymes et 4 nouvelles options. Les valeurs iBeam, cross, plus et watch sont respectivement synonymes de 1, 2, 3 et 4.
  25.  
  26. -- part contents for background part 9
  27. ----- text -----
  28. Nouvelles propri√©t√©s HyperTalk
  29. Carte 4 sur 6
  30.  
  31. -- part contents for background part 17
  32. ----- text -----
  33. set cursor to iBeam
  34. set cursor to cross
  35. set cursor to plus
  36. set cursor to watch
  37. set cursor to none
  38. set cursor to busy
  39. set cursor to arrow
  40. set cursor to hand
  41.  
  42. -- part contents for background part 18
  43. ----- text -----
  44. on cursorDemo
  45. --affiche le "ballon de plage" pendant l'ex√©cution
  46.    put 2 into step
  47.    cleanEnter
  48.    lock screen
  49.    set cursor to busy
  50.    repeat with i = 1 to 2 * (the number of cards)
  51.       go next card
  52.       if i mod step is 0 then
  53.          set cursor to busy
  54.       end if
  55.    end repeat
  56.    unlock screen
  57.    cleanExit
  58. end cursorDemo
  59.  
  60.    
  61.  
  62. -- part contents for background part 35
  63. ----- text -----
  64. Set cursor permet de modifier la forme du pointeur le temps de l'ex√©cution d'une proc√©dure.
  65.  
  66. Les formes sont les suivantes¬†:
  67.  
  68.     iBeam                       pointeur en I
  69.     plus                          croix  mince
  70.     cross                         croix √©paisse
  71.     watch                       montre
  72.     none                         transparent
  73.     busy                         ballon de plage
  74.     arrow                       fl√®che
  75.     hand                         main
  76.  
  77. Le pointeur "ballon de plage", qui indique qu'HyperCard est en train d'effectuer une op√©ration prenant un certain temps, pivote de 1/8 tour √† chaque fois qu‚Äôil est appel√©. Il est donc possible de le faire tourner sur lui-m√™me au moyen d‚Äôune boucle.
  78.